home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Science / RLaB / help / factor < prev    next >
Text File  |  1994-04-25  |  616b  |  23 lines

  1. factor:
  2.  
  3. Syntax:    factor ( A )
  4.  
  5. Description:
  6.  
  7.     The factor function computes the LU factorization of the input
  8.     matrix A. Factor returns a list with 3 elements: 
  9.  
  10.     lu    a matrix containing the LU factors
  11.     pvt    a vector containing the pivot indices
  12.     rcond    the inverse of the condition estimate
  13.  
  14.     Factor utilizes the LAPACK subroutines DGETRF, DGECON or
  15.     ZGETRF, ZGECON.
  16.  
  17.     Factor returns the results in the above format, so that they
  18.     may be conveniently used with backsub for repetitive
  19.     solutions. The user-function lu will separate the results from
  20.     factor into separate L and U matrices.
  21.  
  22. See Also: backsub, inv, solve
  23.